All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----com.apple.alpha.core.NativeObject | +----com.apple.alpha.core.Array
NSArray
.
[[NSArray
alloc] init]
.
- initWithArray:
on a newly allocated object.
- initWithCoder:
on a newly allocated object.
- initWithContentsOfFile:
on a newly allocated object.
+ array
Objective-C class method.
- arrayByAddingObject:
Objective-C instance method.
- arrayByAddingObjectsFromArray:
Objective-C instance method.
+ arrayWithArray:
Objective-C class method.
+ arrayWithContentsOfFile:
Objective-C class method.
+ arrayWithObject:
Objective-C class method.
- componentsJoinedByString:
Objective-C instance method.
- containsObject:
Objective-C instance method.
- count
Objective-C instance method.
- descriptionWithLocale:
Objective-C instance method.
- descriptionWithLocale:indent:
Objective-C instance method.
- encodeWithCoder:
Objective-C instance method
defined by the Coding
interface
(known as the NSCoding
Objective-C protocol).
- firstObjectCommonWithArray:
Objective-C instance method.
- indexOfObjectIdenticalTo:
Objective-C instance method.
- indexOfObjectIdenticalTo:inRange:
Objective-C instance method.
- indexOfObject:
Objective-C instance method.
- indexOfObject:inRange:
Objective-C instance method.
- isEqualToArray:
Objective-C instance method.
- lastObject
Objective-C instance method.
- makeObjectsPerformSelector:
Objective-C instance method.
- makeObjectsPerformSelector:withObject:
Objective-C instance method.
- objectAtIndex:
Objective-C instance method.
- objectEnumerator
Objective-C instance method.
- reverseObjectEnumerator
Objective-C instance method.
- sortedArrayHint
Objective-C instance method.
- sortedArrayUsingSelector:
Objective-C instance method.
- subarrayWithRange:
Objective-C instance method.
- writeToFile:atomically:
Objective-C instance method.
public Array(Object objects[])
protected Array(boolean shouldAllocate, int objcObject)
public Array()
[[NSArray
alloc] init]
.
public Array(Coder aDecoder)
- initWithCoder:
on a newly allocated object.
public Array(Array array)
- initWithArray:
on a newly allocated object.
public Array(String path)
- initWithContentsOfFile:
on a newly allocated object.
public native int count()
- count
Objective-C instance method.
public native Object objectAtIndex(int index)
- objectAtIndex:
Objective-C instance method.
public native Array arrayByAddingObject(Object anObject)
- arrayByAddingObject:
Objective-C instance method.
public native Array arrayByAddingObjectsFromArray(Array otherArray)
- arrayByAddingObjectsFromArray:
Objective-C instance method.
public native String componentsJoinedByString(String separator)
- componentsJoinedByString:
Objective-C instance method.
public native boolean containsObject(Object anObject)
- containsObject:
Objective-C instance method.
public native String descriptionWithLocale(Dictionary locale)
- descriptionWithLocale:
Objective-C instance method.
public native String descriptionWithLocaleAndIndent(Dictionary locale, int level)
- descriptionWithLocale:indent:
Objective-C instance method.
public native Object firstObjectCommonWithArray(Array otherArray)
- firstObjectCommonWithArray:
Objective-C instance method.
public native int indexOfObject(Object anObject)
- indexOfObject:
Objective-C instance method.
public native int indexOfObjectInRange(Object anObject, Range range)
- indexOfObject:inRange:
Objective-C instance method.
public native int indexOfIdenticalObject(Object anObject)
- indexOfObjectIdenticalTo:
Objective-C instance method.
public native int indexOfIdenticalObjectInRange(Object anObject, Range range)
- indexOfObjectIdenticalTo:inRange:
Objective-C instance method.
public native boolean isEqualToArray(Array otherArray)
- isEqualToArray:
Objective-C instance method.
public native Object lastObject()
- lastObject
Objective-C instance method.
public native Enumerator objectEnumerator()
- objectEnumerator
Objective-C instance method.
public native Enumerator reverseObjectEnumerator()
- reverseObjectEnumerator
Objective-C instance method.
public native Data sortedArrayHint()
- sortedArrayHint
Objective-C instance method.
public native Array sortedArrayUsingSelector(Selector comparator)
- sortedArrayUsingSelector:
Objective-C instance method.
public native Array subarrayWithRange(Range range)
- subarrayWithRange:
Objective-C instance method.
public native boolean writeToFile(String path, boolean useAuxiliaryFile)
- writeToFile:atomically:
Objective-C instance method.
public native void makeObjectsPerformMethod(Selector aSelector)
- makeObjectsPerformSelector:
Objective-C instance method.
public native void makeObjectsPerformMethodWithObject(Selector aSelector, Object argument)
- makeObjectsPerformSelector:withObject:
Objective-C instance method.
public static native Object array()
+ array
Objective-C class method.
public static native Object arrayWithContentsOfFile(String path)
+ arrayWithContentsOfFile:
Objective-C class method.
public static native Object arrayWithObject(Object anObject)
+ arrayWithObject:
Objective-C class method.
public static native Object arrayWithArray(Array array)
+ arrayWithArray:
Objective-C class method.
public native void encodeWithCoder(Coder aCoder)
- encodeWithCoder:
Objective-C instance method
defined by the Coding
interface
(known as the NSCoding
Objective-C protocol).
protected native void initWithObjects(Object objects[])
All Packages Class Hierarchy This Package Previous Next Index